home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / compress.zip / MAKEFILE < prev    next >
Text File  |  1994-07-09  |  441b  |  20 lines

  1. #    @(#)Makefile    5.14 (Berkeley) 6/25/90
  2.  
  3. # USERMEM should be the amount of available user memory in bytes.
  4. # Set it to zero, for physical memory less than 1 Meg.
  5. USERMEM=0
  6.  
  7. CFLAGS=-DBSD4_2 -DSACREDMEM=256000 -DUSERMEM=${USERMEM}
  8.  
  9. .c.obj:
  10.     bcc -DSTRICT -W -w! -ml -v -c -I..\tkern\INCLUDE $*.c
  11.  
  12. .obj.exe:
  13.     tlink /v /c /C /s /n /Twe /L..\TKERN\LIB;\bc4\lib @&&!
  14. c0wl.obj $**,$*.exe,,tkern tklib cwl import,$*.def
  15. !
  16. #    rc $*
  17.  
  18. all:    compress.exe
  19.  
  20.